home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / BAGOSRC.ARJ / BAGO.DEF < prev    next >
Text File  |  1991-12-19  |  1KB  |  31 lines

  1. ;module-definition file for bago -- used by link4.exe
  2.  
  3. NAME    Bago       ; application's module name
  4.  
  5. DESCRIPTION 'Windows BOGGLE'
  6.  
  7. EXETYPE    WINDOWS        ; No explicit STUB needed for 3.0
  8.  
  9. ;DATA must be MULTIPLE if program can be invoked more than once
  10.  
  11. DATA    MOVEABLE MULTIPLE PRELOAD
  12.  
  13. CODE    MOVEABLE DISCARDABLE PRELOAD ; code can be moved in memory
  14.  
  15. HEAPSIZE  0x9000    ; As big as possible
  16. STACKSIZE 0x4000    ; Fairly large to support recursion
  17.             ; Also leave space for global variables
  18.  
  19. ; All functions that will be called by any Windows routine
  20. ; MUST be exported.
  21.  
  22. EXPORTS
  23.     BagoWndProc      @1  ; name of window processing function
  24.     About            @2  ; name of "About" processing function
  25.     EditWord         @3  ; Edit Word dialog box function
  26.     EggWndProc       @4  ; window processing for egg timer window
  27.     InputDiag        @5  ; General input dialog box
  28.     ProWndProc       @6  ; window processing for progress bar window
  29.     CubeWndProc      @7  ; window processing for cube buttons
  30.     PicWndProc       @8  ; window processing for pictoral display
  31.